Latest Questions

Refit 6 not working when android project built with unity

I'm using Refit 6 in unity for rest calls but when project is built for Android getting below error. Message: MissingMethodException: Constructor on type 'Refit

I want to new array of 2 array is not equal data [duplicate]

I want to new array of 2 array is not equal data example let a = [{id:1, name:"a"},{id:2, name:"b"},{id:3, name:"c"}]; let b = [{id:1, name:"

Problems with same query in mongoid rails db but different parameters

I’m using mongoid gem ’mongoid’, ’~> 7.2.4’ (mongoDB 3.6) with rails (5) and I have a database with customer collections and bi

Is the logic and the implementation of this query correct?

So i have a table that logs users using certain apps. It has the fields below id time app user server type (can be IN or OUT) So a user starts using a certain

HERE GET Request Python

Was wondering if there's a way for me to send out multiple long and lat cords in the destination and arrival in the HERE api instead of just individual long and

Command Prompt / Anaconda Command Prompt not opening in Windows 11

I am doing a research project that involves me running terminals in the Anaconda Command Prompt. I was able to install and work the current version of Anaconda

Flutter: Shared Storage (Storage Access Framework API) Permission for files inside hidden sub-directory not working

How to achieve to listing all files (e.g. Media) inside hidden subdirectory i.e. folder name start with '.' e.g. "(.media)" after using SAF in Flutter/Dart? I h

Spatie's Laravel Permission and policies don't work together

Excuse my English, it's from a translator. I am using Spatie to control the permissions of my application, for example, each module I have to see, create, updat

React/Jest - How to simulate touch "swipe" event

I have a component that triggers a function call whenever a swipe interaction was done. This swipe interaction can either be executed by touchEvent or mouseEven

How to compute a high dimensional multiple integral with infinite bounds using vegas in Julia

I am trying to compute a high dimensional integral using Julia (>1400 dimensions). I am thus trying to do this using the function vegas, as it can presumably

Entity framework core multi tenant : auto increment column based in another column value

Using entity framework core 6 with sample class public class Sample { [Key] public long Id { get; set; } public long TenantId { get; set; } public long

Save ExoPlayer position to continue playback after closing the view (onDestroy())

As I have understood, when I exit the player view while watching a video by pressing or not the pause button, the onPause() and onStop() methods come into play

What does the "RayPerceptionSensore3D" compocent observe?

I'm just learning about Unity ML-agent. Does the "RayPerceptionSensor3D" component observe only tags and positions that have been hit by rays? Then, is it the s

How to clip a background image using css without affecting its size?

I'm using a picture I found on Google Images as a background image. However, a Google Search bar appears at its top. On its left hand side various icons/logs su

How do I wait for users to click on certain buttons in component, then return a value from that in a function depending on which button was pressed?

I have an overlay component that appears when a user clicks on certain things in my page, and in this overlay it gives a warning and 2 buttons, one for yes and

How to load a static content in index.html

I was using vue-cli with webpack for my project and was loading an image in index.html like this // index.html <html> ... <style> .t

county boundaries for US map with large data

I am trying to load all the county boundaries in the initial load. So I researched and found that loadGeoJson will support that. when I test with state boundari

Accessing namespace from another namespace. Is it an assembly issue? A Monobehavior issue? Syntax issue?

I'm trying to put an inventory management system (Devion Games from Unity's asset store) into the Ellen 3d Gamekit project (Also from Unity). The problem I'm fa

OpenTelemetry Service Point not showing in Prometheus

I installed OpenTelemetry operator in Kubernets. Installed it using helm. helm install my-opentelemetry-collector open-telemetry/opentelemetry-collector Below

getchar() keeps returning EOF even after subsequent calls but read() system calls seem to "clear" the stdin. What are the reasons behind this?

char buff[1]; int main() { int c; c = getchar(); printf("%d\n", c); //output -1 c = getchar(); printf("%d\n", c); // output -1 int re

Getting an average rating of a TV show using average ratings of its seasons from ratings table (Laravel 9)

I have 3 tables: shows, seasons and ratings. I would like to get average ratings of specific seasons and then make an average of this for every show and sort th

What is the best way to determine if the QTextEdit in my QT app is empty or not?

there's a text editing widget in my QT Widget application. My menu item checks to see if the text edit below is empty. Thus, I'm trying to create a function tha

How to preserve case of json key inside glue table which use serde?

I have created a glue table which converts the the json to parquet files .In one of the column which is defined as Map<String,String> having a nested json

Is it possible to proportionally scale an image in Pygame so that it scales from the middle? [duplicate]

I’m currently trying to make an interactive button that grows when you hover over it with the mouse. As of right now, all that happens i

I am trying to add two strings together but getting 3221225477 Error

I am trying to get a number and a repetition number then adding as many numbers as the number of repetition one after the other. But I am getting 3221225477 res

treeview grandfather,parent and son names

I have tree view which has grandfather node and inside of this grandfather there is parent and inside this parent there is son node. How I can get the names of

Azure DevOps Pipelines: Skip resolving deltas + tags in Checkout

In Azure DevOps for any pipeline it takes around a minute to checkout the code. I have configured the fetch depth to 1 to speed it up but this doesn't have any

How can we validate a Postgres database backup is not corrupted?

Is there a efficient way to check if the Postgres backups (for managed services like RDS and Cloudsql) are not corrupted? Currently one of the ways we are imple

contract deployment using brownie and ganache

I want to deploy a contract using brownie. after inserting the brownie run scripts/deploy.py in the terminal of Pycharm, the following message appeared and noth

Android studio SQLite update ID's after deleting first row from table

i'm using SQLite to store data and if i delete the last row, ID is 4 and after that add a new row and the ID is 5 and it should be 4. And when trying to view th